home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / obj2asm.zip / ORTHEADR.C < prev    next >
Text File  |  1991-10-01  |  417b  |  22 lines

  1. #include <stdio.h>
  2. #include "o.h"
  3.  
  4. void theadr()
  5. {
  6.     int     length;
  7.     char    mod_name[41];
  8.     char    mod_temp[43];
  9.  
  10.     length = get_name( mod_name );
  11.     length = length;
  12.  
  13.     if ( compatibility == 2 ) {
  14.         sprintf( mod_temp, "'%s'", mod_name );
  15.         out_line( "", "TITLE", mod_temp, "" );
  16.     } else {
  17.         out_line( "", "TITLE", mod_name, "" );
  18.     }
  19.     out_newline();
  20. }
  21.  
  22.